-
Notifications
You must be signed in to change notification settings - Fork 2
/
fabs.c
45 lines (31 loc) · 949 Bytes
/
fabs.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*++
toro C Library
https://github.com/KilianKegel/toro-C-Library#toro-c-library-formerly-known-as-torito-c-library
Copyright (c) 2017-2024, Kilian Kegel. All rights reserved.
SPDX-License-Identifier: GNU General Public License v3.0
Module Name:
fabs.c
Abstract:
Implementation of the Standard C function.
Calculates the absolute value of the floating-point argument.
Author:
Kilian Kegel
--*/
#include <CdeServices.h>
/**
Synopsis
#include <math.h>
double fabs(double x);
Description
https://learn.microsoft.com/en-us/cpp/c-runtime-library/reference/fabs-fabsf-fabsl
Parameters
https://learn.microsoft.com/en-us/cpp/c-runtime-library/reference/fabs-fabsf-fabsl#parameters
Returns
https://learn.microsoft.com/en-us/cpp/c-runtime-library/reference/fabs-fabsf-fabsl#return-value
**/
double fabs(double x)
{
CDEDOUBLE* pd = (void*) &x;
pd->member.sign = 0;
return pd->dbl;
}